Пример #1
0
def build():
    autotools.configure("--host=%s \
                         --prefix=/usr \
                         --sysconfdir=/etc/unixODBC \
                         --enable-gui=yes \
                         --x-libraries=/usr/lib" % (get.CHOST()))
    autotools.make()
Пример #2
0
def setup():
    removeWerror("./")
    shelltools.export("CFLAGS", "%s -fno-strict-aliasing -Wno-error" % get.CFLAGS())
    shelltools.export("LDFLAGS", get.LDFLAGS().replace("-Wl,--as-needed", ""))

    # autotools.autoreconf("-fi")
    # autotools.configure("./bootstrap --prefix=/usr \
    shelltools.system("./bootstrap --prefix=/usr \
                       --host=%s \
                       --mandir=/usr/share/man \
                       --infodir=/usr/share/info \
                       --sysconfdir=/etc \
                       --libdir=/usr/lib \
                       --localstatedir=/var/lib \
                       --disable-warns-as-err \
                       --enable-server \
                       --datadir=/usr/share/mpeg4ip \
                       --disable-alsatest \
                       --disable-player \
                       --disable-arts \
                       --disable-srtp \
                       --disable-ppc \
                       --disable-static \
                       --disable-esd \
                       --disable-nas" % get.CHOST())
Пример #3
0
def setup():
    pisitools.cflags.add(i)
    autotools.configure("--libexecdir=/usr/lib \
                         --localstatedir=/var \
                         --disable-static \
                         --disable-dependency-tracking \
                         --host=%s \
                         --disable-debug" % get.CHOST())

    pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
Пример #4
0
def setup():
    autotools.configure("--with-dbm=db42 \
                         --with-berkeley-db=/usr/include/db4.2:/usr/lib \
                         --prefix=/usr \
                         --host=%s \
                         --mandir=/usr/share/man \
                         --infodir=/usr/share/info \
                         --datadir=/usr/share/apr-util-1 \
                         --sysconfdir=/etc \
                         --localstatedir=/var/lib \
                         --with-apr=/usr" % get.CHOST())
Пример #5
0
def setup():
    autotools.rawConfigure("--enable-ipv6 \
                            --enable-threads \
                            --enable-nonportable-atomics \
                            --prefix=/usr \
                            --host=%s \
                            --mandir=/usr/share/man \
                            --infodir=/usr/share/info \
                            --datadir=/usr/share/apr-1 \
                            --sysconfdir=/etc \
                            --localstatedir=/var/lib" % get.CHOST())
Пример #6
0
def setup():
    autotools.configure("--with-python \
                         --with-perl \
                         --include=/usr/include/postgresql \
                         --with-tcl \
                         --with-krb5 \
                         --with-openssl \
                         --enable-nls \
                         --with-pam \
                         --enable-integer-datetimes \
                         --enable-thread-safety \
                         --enable-depend \
                         --host=%s \
                         --libdir=/usr/lib \
                         --disable-rpath \
                         --with-docdir=/usr/share/doc/postgresql" %
                        get.CHOST())
Пример #7
0
def setup():
    autotools.configure("--with-python \
                         --with-perl \
                         --include=/usr/include \
                         --with-tcl \
                         --with-krb5 \
                         --with-gssapi \
                         --with-ldap \
                         --with-openssl \
                         --with-pam \
                         --disable-rpath \
                         --enable-thread-safety \
                         --enable-nls \
                         --enable-integer-datetimes \
                         --enable-thread-safety \
                         --host=%s \
                         --datadir=/usr/share/pgsql \
                         --libdir=/usr/lib" % get.CHOST())
Пример #8
0
def setup():
    removeWerror("./")
    shelltools.export("CFLAGS",
                      "%s -fno-strict-aliasing -Wno-error" % get.CFLAGS())
    shelltools.export("LDFLAGS", get.LDFLAGS().replace("-Wl,--as-needed", ""))

    # autotools.autoreconf("-fi")
    shelltools.system("./bootstrap --prefix=/usr \
                       --host=%s \
                       --mandir=/usr/share/man \
                       --infodir=/usr/share/info \
                       --sysconfdir=/etc \
                       --libdir=/usr/lib \
                       --localstatedir=/var/lib \
                       --disable-warns-as-err \
                       --enable-server \
                       --datadir=/usr/share/mpeg4ip \
                       --enable-a52dec \
                       --enable-alsa \
                       --enable-faac \
                       --enable-ffmpeg \
                       --enable-gtk-glib \
                       --enable-id3tags \
                       --enable-ipv6 \
                       --enable-mmx \
                       --enable-mp3lame \
                       --enable-mp4live \
                       --enable-mpeg2dec \
                       --enable-player \
                       --enable-v4l2 \
                       --enable-x264 \
                       --enable-xvid \
                       --disable-arts \
                       --disable-srtp \
                       --disable-ppc \
                       --disable-static \
                       --disable-esd \
                       --disable-nas" % get.CHOST())