Changeset 57ab1681713f288856803392ae58dccc2aa8654b
- Timestamp:
- 03/04/06 14:31:59
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1141479119 +0000
- git-parent:
[078efe2d20dad545399ee47a8f5993170efd9079]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1141479119 +0000
- Message:
Don't BUILD_PIC when the platform doesn't need PIC
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4cdccd0 |
r57ab168 |
|
| 5232 | 5232 | AS_IF([test "x${enable_shared_libvlc}" = "x"], [enable_shared_libvlc=no]) |
|---|
| 5233 | 5233 | AM_CONDITIONAL(BUILD_SHARED, [test "${enable_shared_libvlc}" != "no"]) |
|---|
| 5234 | | AM_CONDITIONAL(BUILD_PIC, [test "${build_pic}" = "yes" -o "${enable_shared_libvlc}" != "no"] ) |
|---|
| 5235 | 5234 | AS_IF([test "${enable_shared_libvlc}" != "no" || test "${enable_libtool}" != "no"], [ |
|---|
| 5236 | 5235 | AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.]) |
|---|
| … | … | |
| 5238 | 5237 | |
|---|
| 5239 | 5238 | pic=no |
|---|
| 5240 | | AS_IF([test "${enable_shared_libvlc}" != "no" -o "${build_pic}" = "yes"], [pic=pic]) |
|---|
| | 5239 | AS_IF([test "${build_pic}" = "yes"], [pic=pic]) |
|---|
| 5241 | 5240 | AS_IF([test "${SYS}" = "mingw32"], [pic=no]) |
|---|
| 5242 | 5241 | AS_IF([test "${pic}" = "no"], [pic=]) |
|---|
| 5243 | 5242 | AC_SUBST(pic) |
|---|
| | 5243 | |
|---|
| | 5244 | AM_CONDITIONAL(BUILD_PIC, [test "${build_pic}" = "yes" && test "x${pic}" = "xpic"]) |
|---|
| 5244 | 5245 | |
|---|
| 5245 | 5246 | dnl Import conditional variables generated by bootstrap |
|---|