about summary refs log tree commit diff stats
path: root/src/ui/titlebar.h
Commit message (Expand)AuthorAgeFilesLines
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Tidied new headers, added definesJames Booth2014-04-071-1/+6
* Removed titlebar functions from ui.hJames Booth2014-04-071-1/+7
* Removed create_title_bar from ui.hJames Booth2014-04-071-0/+23
evious revision' href='/danisanti/profani-tty/blame/Dockerfile.debian?id=d510f3a4309cf0a42fc135bbf0905f476757a9c8'>^
0c7350e2 ^

3700c80a ^
61cebcdf ^
3700c80a ^

992f5b80 ^
fada16bd ^
3700c80a ^
992f5b80 ^




3700c80a ^
61cebcdf ^
3700c80a ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53


























                                                                  
               
                         
                  

                         
 
                                                    

                
                                                 
                                                                           
 




                                                            
 
                           






                             
# Build the latest Debian testing image
FROM debian:testing

RUN apt-get update && apt-get install -y --no-install-recommends \
  autoconf \
  autoconf-archive \
  automake \
  expect \
  gcc \
  git \
  libcmocka-dev \
  libcurl3-dev \
  libgcrypt-dev \
  libglib2.0-dev \
  libgpgme11-dev \
  libgtk2.0-dev \
  libmicrohttpd-dev \
  libncursesw5-dev \
  libnotify-dev \
  libotr5-dev \
  libreadline-dev \
  libsignal-protocol-c-dev \
  libssl-dev \
  libtool \
  libxss-dev \
  make \
  pkg-config \
  python3-dev \
  python-dev-is-python3 \
  libsqlite3-dev \
  libgdk-pixbuf-2.0-dev \
  libqrencode-dev

RUN mkdir -p /usr/src/{stabber,libstrophe,profanity}
WORKDIR /usr/src

#RUN git clone https://github.com/boothj5/stabber
RUN git clone -c http.sslverify=false https://github.com/strophe/libstrophe

#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

WORKDIR /usr/src/libstrophe
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr
RUN make
RUN make install

WORKDIR /usr/src/profanity
COPY . /usr/src/profanity