OpenSDE Packages Database (without history before r20070)
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.

40 lines
1.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../luaexpat/makefile.patch
  5. # Copyright (C) 2006 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. --- ./makefile.orig 2005-06-27 19:04:27.000000000 +0200
  17. +++ ./makefile 2006-10-09 14:13:41.000000000 +0200
  18. @@ -7,11 +7,8 @@
  19. lib: src/$(LIBNAME)
  20. -src/$(LIBNAME) : src/lxplib.o $(COMPAT_DIR)/compat-5.1.o
  21. - export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) -o src/$(LIBNAME) $(LIB_OPTION) src/lxplib.o $(COMPAT_DIR)/compat-5.1.o -lexpat
  22. -
  23. -$(COMPAT_DIR)/compat-5.1.o: $(COMPAT_DIR)/compat-5.1.c
  24. - $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c
  25. +src/$(LIBNAME) : src/lxplib.o
  26. + export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) -o src/$(LIBNAME) $(LIB_OPTION) src/lxplib.o -lexpat
  27. install:
  28. mkdir -p $(LUA_LIBDIR)
  29. @@ -21,6 +18,6 @@
  30. cp src/$T/lom.lua $(LUA_DIR)/$T
  31. clean:
  32. - rm -f src/$(LIBNAME) src/lxplib.o $(COMPAT_DIR)/compat-5.1.o
  33. + rm -f src/$(LIBNAME) src/lxplib.o
  34. # $Id: makefile,v 1.32 2005/06/27 17:04:27 tomas Exp $