Skip to content

Commit 8968586

Browse files
author
Andrea Medeghini
committed
Replaced official CVS repository with GitHub repository
1 parent 68c3753 commit 8968586

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM freeimage4java:latest
22

3-
RUN apt-get update && apt-get -y install cvs make gcc g++
3+
RUN apt-get update && apt-get -y install make gcc g++
44

5-
RUN cvs -z3 -d:pserver:anonymous@freeimage.cvs.sourceforge.net:/cvsroot/freeimage co -P FreeImage
5+
RUN git clone https://github.com/nextbreakpoint/FreeImage.git FreeImage
66

77
COPY Makefile.lib.linux FreeImage/Makefile.lib.linux
88
COPY Makefile.jni.linux FreeImage/Makefile.jni.linux

Dockerfile.mingw64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM freeimage4java:latest
22

3-
RUN apt-get update && apt-get -y install cvs make mingw-w64
3+
RUN apt-get update && apt-get -y install make mingw-w64
44

5-
RUN cvs -z3 -d:pserver:anonymous@freeimage.cvs.sourceforge.net:/cvsroot/freeimage co -P FreeImage
5+
RUN git clone https://github.com/nextbreakpoint/FreeImage.git FreeImage
66

77
COPY Makefile.lib.mingw64 FreeImage/Makefile.lib.mingw64
88
COPY Makefile.jni.mingw64 FreeImage/Makefile.jni.mingw64

build-macos.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ export BUILD_DIR=`pwd`/build
33

44
rm -fR FreeImage
55

6-
cvs -z3 -d:pserver:anonymous@freeimage.cvs.sourceforge.net:/cvsroot/freeimage co -P FreeImage
6+
#cvs -z3 -d:pserver:anonymous@freeimage.cvs.sourceforge.net:/cvsroot/freeimage co -P FreeImage
7+
8+
git clone https://github.com/nextbreakpoint/FreeImage.git FreeImage
79

810
cp Makefile.lib.macos FreeImage/Makefile.lib.macos
911
cp Makefile.jni.macos FreeImage/Makefile.jni.macos

0 commit comments

Comments
 (0)