mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 21:56:31 +00:00
gamin: fix build with !BR2_LARGEFILE and python enabled
Python binding support is broken for cross compilation, disable for now. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
57ea7207bc
commit
a1deb18ba6
10
CHANGES
10
CHANGES
@ -21,11 +21,11 @@
|
|||||||
sdl_sound, swfdec, sysstat
|
sdl_sound, swfdec, sysstat
|
||||||
|
|
||||||
Updated/fixed packages: alsamixergui, autoconf, bootutils, busybox,
|
Updated/fixed packages: alsamixergui, autoconf, bootutils, busybox,
|
||||||
gcc, directfb, dnsmasq, e2fsprogs, festival, gstreamer, gst-plugins-bad,
|
gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gstreamer,
|
||||||
gst-plugins-base, gst-plugins-good, imagemagick, ipkg, iptables,
|
gst-plugins-bad, gst-plugins-base, gst-plugins-good, imagemagick,
|
||||||
iw, kernel-headers, kismet, libelf, libevent, libglib2, libidn,
|
ipkg, iptables, iw, kernel-headers, kismet, libelf, libevent, libglib2,
|
||||||
liblockfile, libmad, libpcap, libupnp, libuuid, lighttpd, ltrace,
|
libidn, liblockfile, libmad, libpcap, libupnp, libuuid, lighttpd,
|
||||||
lua, lzma, magiccube4d, matchbox, mdadm, nbd, ncftp, ncurses,
|
ltrace, lua, lzma, magiccube4d, matchbox, mdadm, nbd, ncftp, ncurses,
|
||||||
netkittelnet, netsnmp, ntfs-3g, openntp, openssl, php, python, quagga,
|
netkittelnet, netsnmp, ntfs-3g, openntp, openssl, php, python, quagga,
|
||||||
radvd, rsync, rubix, samba, sawman, sdl, shared-mime-info, spawn-fcgi,
|
radvd, rsync, rubix, samba, sawman, sdl, shared-mime-info, spawn-fcgi,
|
||||||
speech-tools, sqlite, squashfs, synergy, syslinux, target-binutils,
|
speech-tools, sqlite, squashfs, synergy, syslinux, target-binutils,
|
||||||
|
@ -12,9 +12,8 @@ GAMIN_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
GAMIN_CONF_OPT = --program-prefix="" --disable-debug
|
GAMIN_CONF_OPT = --program-prefix="" --disable-debug
|
||||||
|
|
||||||
ifneq ($(BR2_PACKAGE_PYTHON),y)
|
# python support broken
|
||||||
GAMIN_CONF_OPT += --without-python
|
GAMIN_CONF_OPT += --without-python
|
||||||
endif
|
|
||||||
|
|
||||||
GAMIN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
GAMIN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
||||||
|
|
||||||
@ -22,6 +21,8 @@ GAMIN_CONF_ENV = have_abstract_sockets=no
|
|||||||
|
|
||||||
ifneq ($(BR2_LARGEFILE),y)
|
ifneq ($(BR2_LARGEFILE),y)
|
||||||
GAMIN_CONF_ENV += CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE"
|
GAMIN_CONF_ENV += CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE"
|
||||||
|
# the above doesn't work with shared config.cache
|
||||||
|
GAMIN_USE_CONFIG_CACHE = NO
|
||||||
endif
|
endif
|
||||||
|
|
||||||
GAMIN_DEPENDENCIES = libglib2
|
GAMIN_DEPENDENCIES = libglib2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user