MacPorts.framework: Don't build against 10.8 SDK

This should fix building MacPorts.framework with newer versions of Xcode.

git-svn-id: https://svn.macports.org/repository/macports/branches/gsoc15-pallet@143486 d073be05-634f-4543-b044-5fe20cf6d1d6
This commit is contained in:
Clemens Lang
2015-12-13 20:04:27 +00:00
parent 3df093705b
commit 69405b0d9b
2 changed files with 10 additions and 10 deletions
@@ -1113,7 +1113,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperTool;
SDKROOT = macosx10.8;
SDKROOT = macosx;
ZERO_LINK = NO;
};
name = "Release-Tiger";
@@ -1185,7 +1185,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = Test;
SDKROOT = macosx10.8;
SDKROOT = macosx;
WRAPPER_EXTENSION = octest;
ZERO_LINK = NO;
};
@@ -1232,7 +1232,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperToolIPCTester;
SDKROOT = "";
SDKROOT = macosx;
ZERO_LINK = NO;
};
name = "Release-Tiger";
@@ -1473,7 +1473,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = Test;
SDKROOT = macosx10.8;
SDKROOT = macosx;
WRAPPER_EXTENSION = octest;
ZERO_LINK = NO;
};
@@ -1511,7 +1511,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = Test;
SDKROOT = macosx10.8;
SDKROOT = macosx;
WRAPPER_EXTENSION = octest;
ZERO_LINK = NO;
};
@@ -1575,7 +1575,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperTool;
SDKROOT = macosx10.8;
SDKROOT = macosx;
};
name = Debug;
};
@@ -1598,7 +1598,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperTool;
SDKROOT = macosx10.8;
SDKROOT = macosx;
ZERO_LINK = NO;
};
name = Release;
@@ -1630,7 +1630,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperToolIPCTester;
SDKROOT = "";
SDKROOT = macosx;
};
name = Debug;
};
@@ -1660,7 +1660,7 @@
);
PREBINDING = NO;
PRODUCT_NAME = MPHelperToolIPCTester;
SDKROOT = "";
SDKROOT = macosx;
ZERO_LINK = NO;
};
name = Release;
+1 -1
View File
@@ -1,6 +1,6 @@
CC = gcc
SOURCES = $(*.m *.c)
FRAMEWORKS = -framework Foundation -framework AppKit -framework Cocoa -framework SenTestingKit -framework MacPorts -framework Growl
FRAMEWORKS = -framework Foundation -framework AppKit -framework Cocoa -framework MacPorts -framework Growl
LIBRARIES = -lobjc
INCLUDE_FLAGS = -I/opt/local/libexec/macports/include -L/opt/local/libexec/macports/lib -ltcl8.5
CFLAGS = -Wall -arch i386 -g -v $(SOURCES)