You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
695 B

  1. --- a/src/usr/argp/main.c
  2. +++ b/src/usr/argp/main.c
  3. @@ -8,6 +8,7 @@
  4. #include <errno.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. +#include <getopt.h>
  8. #include "command.h"
  9. #include "log.h"
  10. --- a/src/usr/iptables/Makefile
  11. +++ b/src/usr/iptables/Makefile
  12. @@ -34,9 +34,9 @@ uninstall:
  13. rm -f ${DESTDIR}${XTABLES_SO_DIR}/libxt_JOOL_SIIT.so
  14. rm -f ${DESTDIR}${XTABLES_SO_DIR}/libxt_JOOL.so
  15. lib%.so: lib%.o
  16. - gcc -shared -fPIC ${LDFLAGS} -o $@ $^;
  17. + ${CC} -shared -fPIC ${LDFLAGS} -o $@ $^;
  18. lib%.o: lib%.c
  19. - gcc ${DEFAULT_CFLAGS} ${CFLAGS} -D_INIT=lib$*_init -fPIC -c -o $@ $<;
  20. + ${CC} ${DEFAULT_CFLAGS} ${CFLAGS} -D_INIT=lib$*_init -fPIC -c -o $@ $<;
  21. clean distclean:
  22. rm -f *.so
  23. distdir: