summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <jbj>2010-02-12 22:29:12 +0000
committerjbj <jbj>2010-02-12 22:29:12 +0000
commitbc418f0ede307257c22bb1e510558e2fbd2b1ecf (patch)
tree1f7be9a0c4a5d227cbe01350ca7f7f8f1bb4fba8
parent06b2a0879806d131cc3c85c8adec5da30df9696c (diff)
downloadlibpopt-bc418f0ede307257c22bb1e510558e2fbd2b1ecf.tar.gz
- add -liconv for static linkage.
- ignore the xcode build directory
-rw-r--r--.cvsignore1
-rw-r--r--popt.xcodeproj/project.pbxproj8
2 files changed, 7 insertions, 2 deletions
diff --git a/.cvsignore b/.cvsignore
index d882ad0..231e54a 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -8,6 +8,7 @@ Makefile
Makefile.in
aclocal.m4
autom4te*
+build
config.cache
config.guess
config.h
diff --git a/popt.xcodeproj/project.pbxproj b/popt.xcodeproj/project.pbxproj
index 131783e..4652272 100644
--- a/popt.xcodeproj/project.pbxproj
+++ b/popt.xcodeproj/project.pbxproj
@@ -72,7 +72,7 @@
0D006A061125FADD00A2FA32 /* testit.sh */ = {isa = PBXFileReference; fileEncoding = 7; lastKnownFileType = text.script.sh; path = testit.sh; sourceTree = "<group>"; };
0D3BACFC1125FF5300B3E80C /* popt.ps */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = popt.ps; sourceTree = "<group>"; };
0D3EA3C31125E529001C69E6 /* lookup3.c */ = {isa = PBXFileReference; fileEncoding = 7; lastKnownFileType = sourcecode.c.c; path = lookup3.c; sourceTree = "<group>"; };
- 0D3EA3C51125E537001C69E6 /* popt.c */ = {isa = PBXFileReference; explicitFileType = compiled; fileEncoding = 7; path = popt.c; sourceTree = "<group>"; };
+ 0D3EA3C51125E537001C69E6 /* popt.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.c; fileEncoding = 7; path = popt.c; sourceTree = "<group>"; };
0D3EA3C71125E53F001C69E6 /* popt.h */ = {isa = PBXFileReference; fileEncoding = 7; lastKnownFileType = sourcecode.c.h; path = popt.h; sourceTree = "<group>"; };
0D3EA3C91125E54B001C69E6 /* poptconfig.c */ = {isa = PBXFileReference; fileEncoding = 7; lastKnownFileType = sourcecode.c.c; path = poptconfig.c; sourceTree = "<group>"; };
0D3EA3CB1125E553001C69E6 /* popthelp.c */ = {isa = PBXFileReference; fileEncoding = 7; lastKnownFileType = sourcecode.c.c; path = popthelp.c; sourceTree = "<group>"; };
@@ -344,6 +344,7 @@
GCC_OPTIMIZATION_LEVEL = 2;
GCC_PREPROCESSOR_DEFINITIONS = HAVE_CONFIG_H;
INSTALL_PATH = /usr/local/lib;
+ OTHER_LDFLAGS = "-liconv";
PREBINDING = NO;
PRODUCT_NAME = popt;
};
@@ -377,7 +378,10 @@
GCC_PREPROCESSOR_DEFINITIONS = HAVE_CONFIG_H;
INSTALL_PATH = /usr/local/bin;
MACH_O_TYPE = mh_execute;
- OTHER_LDFLAGS = "-lpopt";
+ OTHER_LDFLAGS = (
+ "-lpopt",
+ "-liconv",
+ );
PREBINDING = NO;
PRODUCT_NAME = test1;
};