From: Ken D. <ke...@bo...> - 2005-03-14 17:28:20
|
On Mon, Mar 14, 2005 at 10:48:48AM -0600, William Metcalf (Wil...@kc...) wrote: > Works ok for me, what exactly are you passing to ./configure? Here is the relevant section of the makefile: $(SNORT_INLINE_DIR)/.configured: build_msg $(SNORT_INLINE_DIR)/.unpacked (cd $(SNORT_INLINE_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --sbindir=/usr/sbin \ --libexecdir=/usr/lib \ --sysconfdir=/etc \ --datadir=/usr/share \ --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info \ --program-prefix="" \ --enable-flexresp \ --enable-pthread \ --with-libipq-includes=$(STAGING_DIR)/usr/include/libipq/ \ --with-libipq-librairies=$(STAGING_DIR)/include/ \ --with-libnet-includes=$(STAGING_DIR)/usr/include/ \ --with-libnet-librairies=$(STAGING_DIR)/usr/lib/ \ ); /* various variables used in above */ BASE_DIR:=${shell pwd} BUILD_DIR:=$(BASE_DIR)/build_$(ARCH)$(ARCH_FPU_SUFFIX) STAGING_DIR=$(BUILD_DIR)/staging_dir TARGET_PATH=$(STAGING_DIR)/bin:/bin:/sbin:/usr/bin:/usr/sbin TARGET_CONFIGURE_OPTS=PATH=$(TARGET_PATH) TARGET_OPTIMIZATION=-Os -mips2 TARGET_DEBUGGING= #-g TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) ARCH:=mipsel OPTIMIZE_FOR_CPU=$(ARCH) GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-linux SNORT_INLINE_DIR:=$(BUILD_DIR)/snort_inline-2.2.0a -- I reason and act, therefore, ken_i_m "Doing my part to spread the free and open software (FOSS) memes". |