]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/sysfsutils
rtl8189fs: add realtek wlan driver
[people/pmueller/ipfire-2.x.git] / lfs / sysfsutils
index 4980f5e178f2f71e7eb2d864ea5ae62d97494c2f..6c872b16b7d5fdf310dcba7e0ccc408eef557ee3 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2007-2021  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.3.0
+VER        = 2.1.1
 
 THISAPP    = sysfsutils-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -33,6 +33,8 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
+CFLAGS    += -fcommon
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -41,7 +43,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = d11c99271531be3c1e6d36b53968cd2b
+$(DL_FILE)_MD5 = 537c110be7244905997262854505c30f
 
 install : $(TARGET)
 
@@ -71,8 +73,14 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure --prefix=""
-       cd $(DIR_APP) && make $(MAKETUNING)
+       $(UPDATE_AUTOMAKE)
+       cd $(DIR_APP) && ./autogen
+       cd $(DIR_APP) && ./configure            \
+                           --prefix=/usr       \
+                           --libdir=/lib       \
+                           --disable-static
+       cd $(DIR_APP) && make $(MAKETUNING) \
+               CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)