Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
1a8db66f
Commit
1a8db66f
authored
Nov 24, 2005
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: fix more issues when building under cygwin
parent
26727f0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
35 deletions
+16
-35
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+5
-1
extras/contrib/src/Patches/gcrypt.patch
extras/contrib/src/Patches/gcrypt.patch
+11
-34
No files found.
extras/contrib/src/Makefile
View file @
1a8db66f
...
...
@@ -75,6 +75,10 @@ ifneq ($(BUILD),$(HOST))
HOSTCONF
=
--host
=
$(HOST)
--build
=
$(BUILD)
FFMPEGCONF
=
--cross-prefix
=
$(HOST)
-
X264CONF
=
--crosscompile
=
$(HOST)
else
ifneq
($CC,)
FFMPEGCONF
=
--cc
=
"
$(CC)
"
endif
endif
#
...
...
@@ -1422,7 +1426,7 @@ libgcrypt-$(GCRYPT_VERSION).tar.bz2:
libgcrypt
:
libgcrypt-$(GCRYPT_VERSION).tar.bz2
$(EXTRACT_BZ2)
#
patch -p 0 < Patches/gcrypt.patch
patch
-p
0 < Patches/gcrypt.patch
.gcrypt
:
libgcrypt .gpg-error
ifdef
HAVE_WIN32
...
...
extras/contrib/src/Patches/gcrypt.patch
View file @
1a8db66f
diff -ruN libgcrypts.orig/cipher/serpent.c libgcrypt/cipher/serpent.c
--- libgcrypts.orig/cipher/serpent.c 2003-12-11 15:29:14.000000000 +0100
+++ libgcrypt/cipher/serpent.c 2005-04-09 18:58:57.000000000 +0200
@@ -55,6 +55,10 @@
serpent_subkeys_t keys; /* Generated subkeys. */
} serpent_context_t;
+/* A prototype. */
+static const char *serpent_test (void);
+
+
#define byte_swap_32(x) \
(0 \
| (((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) \
@@ -687,8 +691,6 @@
if (! serpent_init_done)
{
/* Execute a self-test the first time, Serpent is used. */
- static const char *serpent_test (void);
-
serpent_test_ret = serpent_test ();
if (serpent_test_ret)
log_error ("Serpent test failure: %s\n", serpent_test_ret);
diff -ruN libgcrypts.orig/src/gcrypt.h libgcrypt/src/gcrypt.h
--- libgcrypts.orig/src/gcrypt.h 2004-04-15 11:10:37.000000000 +0200
+++ libgcrypt/src/gcrypt.h 2005-04-09 18:57:14.000000000 +0200
@@ -29,6 +29,7 @@
#include <sys/types.h>
#include <sys/socket.h>
+#include <sys/time.h>
/* This is required for error code compatibility. */
#define _GCRY_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_GCRYPT
--- libgcrypt/configure.old 2005-01-05 13:53:24.000000000 +0000
+++ libgcrypt/configure 2005-11-24 12:28:28.703125000 +0000
@@ -25685,7 +25685,7 @@
#
tmp_do_check="no"
case "${target}" in
- i386-emx-os2 | i345686-pc-os2*emx | i386-pc-msdosdjgpp)
+ i386-emx-os2 | i345686-pc-os2*emx | i386-pc-msdosdjgpp | *mingw32*)
ac_cv_sys_symbol_underscore=yes
;;
*)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment